home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 July / CMCD0704.ISO / Software / Freeware / Comunicatii / htttrack / httrack-3.32-2.exe / {app} / src_win / WinHTTrack / HTTrackInterface.c < prev    next >
C/C++ Source or Header  |  2004-04-24  |  7KB  |  288 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Interface                                              */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. #include <sys/types.h>
  38. #include <sys/stat.h>
  39.  
  40. #include "htsglobal.h"
  41. #include "htsbase.h"
  42.  
  43. #include "HTTrackInterface.h"
  44.  
  45. // Lecture d'une ligne (peut Ωtre unicode α priori)
  46. int linput(FILE* fp,char* s,int max) {
  47.   int c;
  48.   int j=0;
  49.   do {
  50.     c=fgetc(fp);
  51.     if (c!=EOF) {
  52.       switch(c) {
  53.         case 13: break;  // sauter CR
  54.         case 10: c=-1; break;
  55.         case 9: case 12: break;  // sauter ces caractΦres
  56.         default: s[j++]=(char) c; break;
  57.       }
  58.     }
  59.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  60.   s[j]='\0';
  61.   return j;
  62. }
  63. int linput_trim(FILE* fp,char* s,int max) {
  64.   int rlen=0;
  65.   char* ls=(char*) malloct(max+2);
  66.   s[0]='\0';
  67.   if (ls) {
  68.     char* a;
  69.     // lire ligne
  70.     rlen=linput(fp,ls,max);
  71.     if (rlen) {
  72.       // sauter espaces et tabs en fin
  73.       while( (rlen>0) && ((ls[max(rlen-1,0)]==' ') || (ls[max(rlen-1,0)]=='\t')) )
  74.         ls[--rlen]='\0';
  75.       // sauter espaces en dΘbut
  76.       a=ls;
  77.       while((rlen>0) && ((*a==' ') || (*a=='\t'))) {
  78.         a++;
  79.         rlen--;
  80.       }
  81.       if (rlen>0) {
  82.         memcpy(s,a,rlen);      // can copy \0 chars
  83.         s[rlen]='\0';
  84.       }
  85.     }
  86.     //
  87.     freet(ls);
  88.   }
  89.   return rlen;
  90. }
  91. int linput_cpp(FILE* fp,char* s,int max) {
  92.   int rlen=0;
  93.   s[0]='\0';
  94.   do {
  95.     int ret;
  96.     if (rlen>0)
  97.     if (s[rlen-1]=='\\')
  98.       s[--rlen]='\0';      // couper \ final
  99.     // lire ligne
  100.     ret=linput_trim(fp,s+rlen,max-rlen);
  101.     if (ret>0)
  102.       rlen+=ret;
  103.   } while((s[max(rlen-1,0)]=='\\') && (rlen<max));
  104.   return rlen;
  105. }
  106.  
  107. // idem avec les car spΘciaux
  108. void rawlinput(FILE* fp,char* s,int max) {
  109.   int c;
  110.   int j=0;
  111.   do {
  112.     c=fgetc(fp);
  113.     if (c!=EOF) {
  114.       switch(c) {
  115.         case 13: break;  // sauter CR
  116.         case 10: c=-1; break;
  117.         default: s[j++]=(char) c; break;
  118.       }
  119.     }
  120.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  121.   s[j++]='\0';
  122. }
  123.  
  124. // Like linput, but in memory (optimized)
  125. int binput(char* buff,char* s,int max) {
  126.   int count = 0;
  127.   int destCount = 0;
  128.  
  129.   // Note: \0 will return 1
  130.   while(count < max && buff[count] != '\0' && buff[count] != '\n') {
  131.     if (buff[count] != '\r') {
  132.       s[destCount++] = buff[count];
  133.     }
  134.   }
  135.   s[destCount] = '\0';
  136.  
  137.   // then return the supplemental jump offset
  138.   return count + 1;
  139.  
  140. int fexist(char* s) {
  141.   struct stat st;
  142.   memset(&st, 0, sizeof(st));
  143.   if (stat(s, &st) == 0) {
  144.     if (S_ISREG(st.st_mode)) {
  145.       return 1;
  146.     }
  147.   }
  148.   return 0;
  149.  
  150. INTsys fsize(char* s) {
  151.   FILE* fp;
  152.   fp=fopen(s,"rb");
  153.   if (fp!=NULL) {
  154.     INTsys i;
  155.     fseek(fp,0,SEEK_END);
  156.     i=ftell(fp);
  157.     fclose(fp);
  158.     return i;
  159.   } else return -1;
  160. }
  161.  
  162. TStamp time_local(void) {
  163.   return ((TStamp) time(NULL));
  164. }
  165.  
  166.  
  167.  
  168.  
  169.  
  170. #define NOSTATIC_RESERVE(name, type, nelt) NOSTATIC_XRESERVE(name, type, nelt)
  171. #define NOSTATIC_XRESERVE(name, type, nelt) do { \
  172.   __declspec( thread ) static type thValue[nelt]; \
  173.   __declspec( thread ) int  static initValue = 0; \
  174.   name = thValue; \
  175.   if (!initValue) { \
  176.     initValue = 1; \
  177.     memset(&thValue, 0, sizeof(thValue)); \
  178.   } \
  179. } while(0)
  180.  
  181.  
  182.  
  183. typedef struct {
  184.   char buff[16][HTS_URLMAXSIZE*2*2];
  185.   int rol;
  186. } concat_strc;
  187. char* concat(const char* a,const char* b) {
  188.   concat_strc* strc;
  189.   NOSTATIC_RESERVE(strc, concat_strc, 1);
  190.   strc->rol=((strc->rol+1)%16);    // roving pointer
  191.   strcpybuff(strc->buff[strc->rol],a);
  192.   if (b) strcatbuff(strc->buff[strc->rol],b);
  193.   return strc->buff[strc->rol];
  194. }
  195. // conversion fichier / -> antislash
  196. #if HTS_DOSNAME
  197. char* __fconv(char* a) {
  198.   int i;
  199.   for(i=0;i<(int) strlen(a);i++)
  200.     if (a[i]=='/')  // convertir
  201.       a[i]='\\';
  202.   return a;
  203. }
  204. char* fconcat(char* a,char* b) {
  205.   return __fconv(concat(a,b));
  206. }
  207. char* fconv(char* a) {
  208.   return __fconv(concat(a,""));
  209. }
  210. #endif
  211.  
  212. /* / et \\ en / */
  213. char* __fslash(char* a) {
  214.   int i;
  215.   for(i=0;i<(int) strlen(a);i++)
  216.     if (a[i]=='\\')  // convertir
  217.       a[i]='/';
  218.   return a;
  219. }
  220. char* fslash(char* a) {
  221.   return __fslash(concat(a,""));
  222. }
  223.  
  224. // conversion minuscules, avec buffer
  225. char* convtolower(char* a) {
  226.   concat_strc* strc;
  227.   NOSTATIC_RESERVE(strc, concat_strc, 1);
  228.   strc->rol=((strc->rol+1)%16);    // roving pointer
  229.   strcpybuff(strc->buff[strc->rol],a);
  230.   hts_lowcase(strc->buff[strc->rol]);  // lower case
  231.   return strc->buff[strc->rol];
  232. }
  233.  
  234. // conversion en minuscules
  235. void hts_lowcase(char* s) {
  236.   int i;
  237.   for(i=0;i<(int) strlen(s);i++)
  238.     if ((s[i]>='A') && (s[i]<='Z'))
  239.       s[i]+=('a'-'A');
  240. }
  241.  
  242. char* next_token(char* p,int flag) {
  243.   int detect=0;
  244.   int quote=0;
  245.   p--;
  246.   do {
  247.     p++;
  248.     if (flag && (*p=='\\')) {   // sauter \x ou \"
  249.       if (quote) {
  250.         char c='\0';
  251.         if (*(p+1)=='\\')
  252.           c='\\';
  253.         else if (*(p+1)=='"')
  254.           c='"';
  255.         if (c) {
  256.           char* tempo = malloc(strlen(p) + 2 + 2);
  257.           tempo[0]=c; tempo[1]='\0';
  258.           strcatbuff(tempo,p+2);
  259.           strcpybuff(p,tempo);
  260.           free(tempo);
  261.         }
  262.       }
  263.     }
  264.     else if (*p==34) {  // guillemets (de fin)
  265.       char* tempo = malloc(strlen(p) + 2);
  266.       tempo[0]='\0';
  267.       strcatbuff(tempo,p+1);
  268.       strcpybuff(p,tempo);   /* wipe "" */
  269.       p--;
  270.       /* */
  271.       quote=!quote;
  272.       /* */
  273.       free(tempo);
  274.     }
  275.     else if (*p==32) {
  276.       if (!quote)
  277.         detect=1;
  278.     }
  279.     else if (*p=='\0') {
  280.       p=NULL;
  281.       detect=1;
  282.     }
  283.   } while(!detect);
  284.   return p;
  285. }
  286.